/*
	A lightweight set of rules to set baseline styling.
*/

/* Fonts */
@import url("//hello.myfonts.net/count/3fbcd0");

@font-face {
	font-family: "GillSansMTPro-Medium";
	src: url('/assets/fonts/GillSansMTProMedium/font.woff2') format('woff2'), url('/assets/fonts/GillSansMTProMedium/font.woff') format('woff');
}
@font-face {
	font-family: "GillSansMTPro-Light";
	src: url('/assets/fonts/GillSansMTProLight/font.woff2') format('woff2'), url('/assets/fonts/GillSansMTProLight/font.woff') format('woff');
}
@font-face {
	font-family: "GillSansMTPro-Book";
	src: url('/assets/fonts/GillSansMTProBook/font.woff2') format('woff2'), url('/assets/fonts/GillSansMTProBook/font.woff') format('woff');
}

/* Custom Properties */
:root {
	--color-brown-dark: #68351a;
	--color-brown: #7f5b4a;
	--color-brown-light: #89614b;
	--color-brown-lightest: #dcd2cc;
	--color-taupe: #938786;
	--font-medium: "GillSansMTPro-Medium", "Gill Sans", Helvetica, sans-serif;
	--font-normal: "GillSansMTPro-Book", "Gill Sans", Helvetica, sans-serif;
	--font-light: "GillSansMTPro-Light", "Gill Sans", Helvetica, sans-serif;
}

html {
	box-sizing: border-box;
	scroll-behavior: smooth;
}
*, *:before, *:after {
	box-sizing: inherit;
}
* {
	margin: 0;
	padding: 0;
	text-underline-offset: 5px;
}
body {
	font-family: var(--font-normal);
	position: relative;
	font-size: 16px;
	line-height: 1.6;
	color: var(--color-brown);
	background: #fff;
}
h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-regular);
	font-weight: normal;
}
picture,
main,
canvas {
	display: block;
}
table {
	width: 100%;
	border-collapse: collapse;
}
th, td {
	vertical-align: top;
}
abbr {
	text-decoration: none !important;
}
textarea, select, input, button {
	font-family: inherit;
}
input {
  accent-color: var(--color-brown-light);
}
select {
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='36' height='36' viewBox='0 0 36 36'><path d='M10.5 15l7.5 7.5 7.5-7.5z' fill='%23aaa'/><path d='M0 0h36v36h-36z' fill='none'/></svg>");
	background-size: 20px;
	background-position: right 10px center;
	background-repeat: no-repeat;
}
input[type="submit"] {
	border: none;
}
input:focus-within {
	outline: 1px solid var(--color-brown-lightest);
}
fieldset {
	border: none;
}
strong {
	font-weight: bold;
}
a, button {
	-webkit-transition: border-color 150ms ease, background-color 150ms ease, color 150ms ease, opacity 150ms ease;
	-moz-transition: 	border-color 150ms ease, background-color 150ms ease, color 150ms ease, opacity 150ms ease;
	-o-transition: 		border-color 150ms ease, background-color 150ms ease, color 150ms ease, opacity 150ms ease;
	transition: 		border-color 150ms ease, background-color 150ms ease, color 150ms ease, opacity 150ms ease;
	color: inherit;
}
a[href], button, input[type="button"], input[type="submit"] {
	cursor: pointer;
}
a {
	color: inherit;
	text-decoration: none;
}
a[href^="tel"] {
	text-decoration: none;
	white-space: nowrap;
}
a, button {
	outline: none;
}
button,
input,
optgroup,
select,
textarea {
	border: none;
	color: inherit;
	font: inherit;
	margin: 0;
}
button,
select {
	text-transform: none;
}
input[type="text"],
input[type="password"],
input[type="search"],
input[type="email"],
input[type="tel"],
textarea {
	-webkit-appearance: none !important;
	-moz-appearance: none !important;
	appearance: none !important;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: button;
	cursor: pointer;
}
button[disabled],
html input[disabled] {
	cursor: no-drop;
}
svg {
	display: inline-block;
	fill: currentColor;
	-webkit-transition: color 150ms ease, fill 150ms ease;
	-moz-transition: color 150ms ease, fill 150ms ease;
	-o-transition: color 150ms ease, fill 150ms ease;
	transition: color 150ms ease, fill 150ms ease;
}
img {
	max-width: 100%;
	height: auto;
	border: none;
	vertical-align: middle;
}
address {
	font-style: normal;
}
button {
	background: none;
	border: none;
}
sup, sub {
	vertical-align: baseline;
	position: relative;
	top: -0.4em;
}
sub { 
	top: 0.4em; 
}
ul, ol {
	list-style-type: none;
}
iframe {
	border: none;
}

/* Pseudo selectors */
::-moz-selection,
::selection {
	text-shadow: none;
}
