/* =========================================================
   PINKTROPHY
   Premium Warm Editorial Website
   ========================================================= */

:root {

  --cream: #f5eee4;
  --cream-light: #fcf9f4;
  --beige: #e8dccb;
  --sand: #d6bfa6;

  --brown: #493126;
  --brown-medium: #6e5548;
  --brown-dark: #281812;

  --orange: #c45c31;
  --orange-soft: #d47a54;

  --text: #2c211b;
  --muted: #76675d;

  --line: #ded1c1;

  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}


/* =========================================================
   RESET
   ========================================================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {

  margin: 0;

  background: var(--cream-light);

  color: var(--text);

  font-family: var(--sans);

  font-weight: 300;

  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
}


/* =========================================================
   HEADER
   ========================================================= */

.header {

  height: 86px;

  padding: 0 5.5%;

  display: grid;

  grid-template-columns: 210px 1fr 220px;

  align-items: center;

  position: sticky;

  top: 0;

  z-index: 1000;

  background: rgba(252, 249, 244, 0.97);

  border-bottom: 1px solid rgba(73, 49, 38, 0.08);

  backdrop-filter: blur(12px);
}


.logo-wrap {
  display: flex;
  align-items: center;
}


.logo-wrap img {

  width: 170px;

  height: 58px;

  object-fit: contain;
}


.header nav {

  display: flex;

  justify-content: center;

  align-items: center;

  gap: 27px;

  font-size: 12px;

  font-weight: 500;
}


.header nav a {

  transition: color 0.2s ease;
}


.header nav a:hover {
  color: var(--orange);
}


.header-actions {

  display: flex;

  justify-content: flex-end;

  align-items: center;

  gap: 14px;
}


.language {

  border: 0;

  background: transparent;

  cursor: pointer;

  color: var(--brown);

  font-size: 12px;

  font-weight: 600;
}


.top-cta,
.orange-button {

  display: inline-block;

  padding: 14px 22px;

  background: var(--orange);

  color: white;

  font-size: 10.5px;

  font-weight: 600;

  letter-spacing: 0.09em;

  transition:
    background 0.25s ease,
    transform 0.25s ease;
}


.top-cta:hover,
.orange-button:hover {

  background: var(--brown);

  transform: translateY(-1px);
}


.menu {

  display: none;

  border: 0;

  background: transparent;

  cursor: pointer;

  color: var(--brown);

  font-size: 24px;
}


/* =========================================================
   HERO
   ========================================================= */

.hero {

  min-height: 530px;

  padding: 55px 7% 65px;

  display: grid;

  grid-template-columns:
    minmax(0, 1.08fr)
    minmax(360px, 0.92fr);

  align-items: center;

  gap: clamp(50px, 7vw, 105px);

  background: var(--cream);
}


.hero-copy {

  width: 100%;

  max-width: 660px;

  justify-self: end;
}


.kicker {

  margin: 0 0 16px;

  color: var(--orange);

  font-size: 10px;

  font-weight: 600;

  letter-spacing: 0.22em;
}


.hero h1 {

  max-width: 650px;

  margin: 0 0 25px;

  font-family: var(--serif);

  font-size: clamp(46px, 4.7vw, 68px);

  font-weight: 500;

  line-height: 1;

  letter-spacing: -0.045em;
}


.hero h1 em {

  color: var(--orange);

  font-weight: 500;
}


.hero-text {

  max-width: 535px;

  margin: 0 0 28px;

  color: #514238;

  font-size: 14.5px;

  line-height: 1.7;
}


/* HERO VALUES */

.hero-values {

  width: min(100%, 530px);

  margin-top: 38px;

  display: grid;

  grid-template-columns: repeat(3, 1fr);
}


.hero-values > div {

  min-height: 55px;

  padding: 0 17px;

  border-right: 1px solid var(--line);
}


.hero-values > div:first-child {
  padding-left: 0;
}


.hero-values > div:last-child {
  border-right: 0;
}


.value-icon {

  display: block;

  margin-bottom: 7px;

  color: var(--brown);

  font-size: 21px;
}


.hero-values p {

  margin: 0;

  color: var(--brown);

  font-size: 8.5px;

  font-weight: 600;

  line-height: 1.45;

  letter-spacing: 0.1em;
}


/* =========================================================
   HERO IMAGE
   ========================================================= */

.hero-visual {

  width: 100%;

  max-width: 500px;

  justify-self: start;
}


.hero-photo {

  position: relative;

  width: 100%;

  height: 355px;

  overflow: hidden;

  background: var(--beige);

  box-shadow: 0 22px 55px rgba(73, 49, 38, 0.10);
}


.hero-photo img {

  width: 100%;

  height: 100%;

  object-fit: cover;

  object-position: center 40%;

  filter:
    saturate(0.88)
    contrast(0.96)
    brightness(1.02);

  transition: transform 0.7s ease;
}


.hero-photo:hover img {
  transform: scale(1.015);
}


.hero-photo::after {

  content: "";

  position: absolute;

  inset: 0;

  pointer-events: none;

  background:
    linear-gradient(
      90deg,
      rgba(40, 24, 18, 0),
      rgba(40, 24, 18, 0.08)
    );
}


.hero-photo-label {

  position: absolute;

  z-index: 3;

  left: 22px;

  bottom: 19px;

  display: flex;

  gap: 9px;

  color: white;

  font-size: 8px;

  font-weight: 600;

  letter-spacing: 0.16em;

  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.25);
}


.hero-caption {

  width: 88%;

  margin: 15px 0 0 auto;

  display: grid;

  grid-template-columns: 30px 1fr;

  gap: 13px;

  align-items: start;
}


.hero-caption > span {

  color: var(--orange);

  font-family: var(--serif);

  font-size: 18px;
}


.hero-caption p {

  margin: 2px 0 0;

  color: var(--muted);

  font-size: 11px;

  line-height: 1.5;
}


/* =========================================================
   GENERAL SECTIONS
   ========================================================= */

.section {

  width: min(1380px, 100%);

  margin: 0 auto;

  padding: 78px 5.5%;
}


.section-heading {
  margin-bottom: 32px;
}


.section h2,
.statement-section h2,
.about h2,
.industries-section h2,
.contact h2 {

  margin: 0;

  font-family: var(--serif);

  font-size: clamp(34px, 3.3vw, 49px);

  font-weight: 500;

  line-height: 1.08;

  letter-spacing: -0.03em;
}


.section-intro {

  max-width: 620px;

  margin: 16px 0 0;

  color: var(--muted);

  font-size: 13px;

  line-height: 1.65;
}


/* =========================================================
   SERVICES
   ========================================================= */

.services-section {

  padding-top: 82px;

  padding-bottom: 88px;
}


.services-grid {

  display: grid;

  grid-template-columns: repeat(5, minmax(0, 1fr));

  gap: 22px;
}


.service-card {
  min-width: 0;
}


.service-image {

  width: 100%;

  height: 165px;

  margin-bottom: 13px;

  overflow: hidden;

  background: var(--beige);
}


.service-image img {

  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: transform 0.45s ease;
}


.service-card:hover img {
  transform: scale(1.025);
}


.card-number {

  display: block;

  margin-bottom: 6px;

  color: var(--orange);

  font-size: 9px;

  font-weight: 600;

  letter-spacing: 0.12em;
}


.service-card h3,
.work-card h3 {

  margin: 0 0 7px;

  font-family: var(--serif);

  font-size: 18px;

  font-weight: 500;

  line-height: 1.25;
}


.service-card p,
.work-card p {

  margin: 0;

  color: var(--muted);

  font-size: 11.5px;

  line-height: 1.6;
}


/* =========================================================
   STATEMENT
   ========================================================= */

.statement-section {

  padding: 65px 8%;

  display: grid;

  grid-template-columns: 60px 1.1fr 0.9fr;

  align-items: center;

  gap: 40px;

  background: var(--beige);
}


.statement-number {

  align-self: start;

  color: var(--orange);

  font-family: var(--serif);

  font-size: 21px;
}


.statement-section h2 em {

  color: var(--orange);

  font-weight: 500;
}


.statement-copy {

  max-width: 510px;

  margin: 0;

  color: #5f4e43;

  font-size: 13px;

  line-height: 1.75;
}


/* =========================================================
   SELECTED WORK
   ========================================================= */

.work-section {

  padding-top: 85px;

  padding-bottom: 88px;
}


.work-grid {

  display: grid;

  grid-template-columns: repeat(4, minmax(0, 1fr));

  gap: 24px;
}


.work-card {
  min-width: 0;
}


.work-image {

  width: 100%;

  height: 220px;

  margin-bottom: 15px;

  overflow: hidden;

  background: var(--beige);
}


.work-image img {

  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: transform 0.5s ease;
}


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


/* curated crops */

.work-card:nth-child(1) .work-image img {
  object-position: center 35%;
}

.work-card:nth-child(2) .work-image img {
  object-position: center 40%;
}

.work-card:nth-child(3) .work-image img {
  object-position: center 45%;
}

.work-card:nth-child(4) .work-image img {
  object-position: center 45%;
}


.work-meta {

  display: grid;

  grid-template-columns: 27px 1fr;

  gap: 9px;
}


.work-meta > span {

  padding-top: 2px;

  color: var(--orange);

  font-size: 9px;

  font-weight: 600;
}


.project-note {

  max-width: 730px;

  margin: 32px 0 0;

  color: #8a796e;

  font-size: 9.5px;

  line-height: 1.6;
}


/* =========================================================
   ABOUT
   ========================================================= */

.about {

  padding: 76px 7%;

  display: grid;

  grid-template-columns:
    minmax(0, 1.15fr)
    minmax(360px, 1fr)
    200px;

  align-items: center;

  gap: 52px;

  background: var(--cream);

  border-top: 1px solid var(--line);
}


.about-copy {

  padding-right: 45px;

  border-right: 1px solid rgba(196, 92, 49, 0.42);
}


.about h2 em {

  color: var(--orange);

  font-weight: 500;
}


.about-copy > p:not(.kicker) {

  max-width: 560px;

  margin: 21px 0 26px;

  color: #55463c;

  font-size: 13px;

  line-height: 1.7;
}


.about-facts {

  display: grid;

  grid-template-columns: repeat(3, 1fr);
}


.fact {

  min-height: 100px;

  padding: 5px 20px;

  border-right: 1px solid var(--line);
}


.fact:first-child {
  padding-left: 0;
}


.fact:last-child {
  border-right: 0;
}


.fact strong {

  display: block;

  margin-bottom: 8px;

  color: var(--orange);

  font-family: var(--serif);

  font-size: 33px;

  font-weight: 500;
}


.fact span {

  color: var(--brown-medium);

  font-size: 11px;

  line-height: 1.45;
}


.signature {

  color: var(--brown);

  font-family: var(--serif);

  font-size: 27px;

  font-style: italic;

  line-height: 1.08;

  text-align: center;

  transform: rotate(-4deg);
}


.signature em {
  color: var(--orange);
}


/* =========================================================
   SECTORS
   ========================================================= */

.industries-section {

  padding: 78px 7% 86px;

  background: var(--cream-light);

  border-top: 1px solid var(--line);
}


.sectors-heading {

  max-width: 760px;

  margin-bottom: 36px;
}


.sector-grid {

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  border-top: 1px solid var(--line);

  border-left: 1px solid var(--line);
}


.sector-item {

  position: relative;

  min-height: 180px;

  padding: 28px 30px;

  border-right: 1px solid var(--line);

  border-bottom: 1px solid var(--line);

  transition:
    background 0.25s ease,
    transform 0.25s ease;
}


.sector-item:hover {

  background: var(--cream);
}


.sector-item > span {

  display: block;

  margin-bottom: 25px;

  color: var(--orange);

  font-size: 9px;

  font-weight: 600;

  letter-spacing: 0.1em;
}


.sector-item h3 {

  margin: 0 0 10px;

  color: var(--brown);

  font-family: var(--serif);

  font-size: 20px;

  font-weight: 500;

  line-height: 1.2;
}


.sector-item p {

  max-width: 330px;

  margin: 0;

  color: var(--muted);

  font-size: 11.5px;

  line-height: 1.65;
}


/* Make Fashion visually prominent */

.featured-sector {

  background: var(--cream);
}


.featured-sector h3 {

  color: var(--orange);

  font-size: 23px;
}


/* =========================================================
   CONTACT
   ========================================================= */

.contact {

  padding: 82px 6%;

  background: var(--brown);

  color: var(--cream-light);

  text-align: center;
}


.kicker.light {
  color: var(--orange-soft);
}


.contact h2 {
  margin-bottom: 16px;
}


.contact > p:not(.kicker) {

  max-width: 650px;

  margin: 0 auto 29px;

  color: #e3d5ca;

  font-size: 13px;

  line-height: 1.7;
}


.contact-button {

  display: inline-block;

  padding: 14px 25px;

  background: var(--orange);

  color: white;

  font-size: 12px;

  font-weight: 500;

  transition: background 0.25s ease;
}


.contact-button:hover {
  background: var(--orange-soft);
}


/* =========================================================
   FOOTER
   ========================================================= */

footer {

  min-height: 150px;

  padding: 35px 6%;

  display: grid;

  grid-template-columns: 1fr 1fr 1fr;

  align-items: center;

  gap: 30px;

  background: var(--brown-dark);

  color: var(--cream);
}


.footer-brand {

  display: flex;

  align-items: center;
}


/*
   Logo sits on cream so original PinkTrophy
   colours remain visible.
*/

.footer-logo-box {

  width: 190px;

  padding: 7px 11px;

  background: var(--cream);
}


.footer-logo-box img {

  display: block;

  width: 100%;

  height: auto;

  max-height: 70px;

  object-fit: contain;

  filter: none !important;

  opacity: 1 !important;
}


footer nav {

  display: flex;

  justify-content: center;

  flex-wrap: wrap;

  gap: 19px;

  font-size: 10px;
}


footer nav a {

  color: #e8dbd1;

  transition: color 0.2s ease;
}


footer nav a:hover {
  color: var(--orange-soft);
}


.footer-right {

  color: #cbb9ad;

  font-size: 9.5px;

  line-height: 1.55;

  text-align: right;
}


.footer-right p {
  margin: 4px 0;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {

  .header {

    grid-template-columns: 1fr auto auto;
  }


  .header > nav {

    display: none;

    position: absolute;

    top: 86px;

    left: 0;

    width: 100%;

    padding: 25px 6%;

    flex-direction: column;

    align-items: flex-start;

    gap: 4px;

    background: var(--cream-light);

    border-bottom: 1px solid var(--line);
  }


  .header > nav.open {
    display: flex;
  }


  .header > nav a {

    width: 100%;

    padding: 9px 0;
  }


  .top-cta {
    display: none;
  }


  .menu {
    display: block;
  }


  /* HERO */

  .hero {

    grid-template-columns: 1fr 0.9fr;

    gap: 40px;

    padding: 50px 5%;
  }


  .hero-photo {
    height: 340px;
  }


  /* SERVICES */

  .services-grid {

    grid-template-columns: repeat(3, 1fr);

    row-gap: 35px;
  }


  /* WORK */

  .work-grid {

    grid-template-columns: repeat(2, 1fr);

    row-gap: 38px;
  }


  .work-image {
    height: 255px;
  }


  /* ABOUT */

  .about {

    grid-template-columns: 1fr 1fr;

    gap: 42px;
  }


  .signature {

    grid-column: 1 / -1;

    margin-top: 5px;
  }


  /* SECTORS */

  .sector-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 760px) {

  .header {

    height: 74px;

    padding: 0 5%;
  }


  .header > nav {
    top: 74px;
  }


  .logo-wrap img {

    width: 145px;

    height: 52px;
  }


  /* HERO */

  .hero {

    display: flex;

    flex-direction: column;

    min-height: 0;

    padding: 47px 6% 55px;

    gap: 36px;
  }


  .hero-copy {
    max-width: none;
  }


  .hero h1 {

    font-size: clamp(42px, 12.5vw, 57px);
  }


  .hero-visual {
    max-width: none;
  }


  .hero-photo {
    height: 325px;
  }


  .hero-caption {
    width: 93%;
  }


  /* SECTIONS */

  .section {
    padding: 60px 6%;
  }


  .services-grid,
  .work-grid {

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 28px 18px;
  }


  .service-image {
    height: 170px;
  }


  .work-image {
    height: 220px;
  }


  /* STATEMENT */

  .statement-section {

    padding: 55px 6%;

    grid-template-columns: 1fr;

    gap: 18px;
  }


  .statement-number {
    display: none;
  }


  /* ABOUT */

  .about {

    padding: 60px 6%;

    grid-template-columns: 1fr;

    gap: 40px;
  }


  .about-copy {

    padding-right: 0;

    padding-bottom: 35px;

    border-right: 0;

    border-bottom: 1px solid var(--line);
  }


  /* SECTORS */

  .industries-section {

    padding: 60px 6%;
  }


  .sector-grid {

    grid-template-columns: 1fr 1fr;
  }


  .sector-item {

    min-height: 175px;

    padding: 24px;
  }


  /* FOOTER */

  footer {

    padding: 45px 6%;

    grid-template-columns: 1fr;

    text-align: center;
  }


  .footer-brand {
    justify-content: center;
  }


  footer nav {
    justify-content: center;
  }


  .footer-right {
    text-align: center;
  }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 500px) {

  .services-grid,
  .work-grid,
  .sector-grid {

    grid-template-columns: 1fr;
  }


  .service-image {
    height: 220px;
  }


  .work-image {
    height: 260px;
  }


  .hero-photo {
    height: 295px;
  }


  .hero-values {

    grid-template-columns: 1fr;

    gap: 13px;

    margin-top: 30px;
  }


  .hero-values > div {

    padding: 0 0 13px;

    border-right: 0;

    border-bottom: 1px solid var(--line);
  }


  .hero-values > div:last-child {
    border-bottom: 0;
  }


  .about-facts {
    grid-template-columns: 1fr;
  }


  .fact {

    padding: 16px 0;

    border-right: 0;

    border-bottom: 1px solid var(--line);
  }


  .fact:last-child {
    border-bottom: 0;
  }


  .sector-item {
    min-height: auto;
  }

}
